home *** CD-ROM | disk | FTP | other *** search
/ Aminet 52 / Aminet 52 (2002)(GTI - Schatztruhe)[!][Dec 2002].iso / Aminet / game / role / ScottItal.lha / ScottItal / Src / gui.c < prev    next >
C/C++ Source or Header  |  2002-10-01  |  4KB  |  185 lines

  1. struct EasyStruct NoGFX =
  2. {
  3.    sizeof(struct EasyStruct),0,
  4.    "Problemi con la Grafica",
  5.    "%s",
  6.    "Ben fatto"
  7. };
  8.  
  9. struct EasyStruct NoScreen =
  10. {
  11.    sizeof(struct EasyStruct),0,
  12.    "Impossibile aprire lo schermo",
  13.    "Non posso aprire il rechiesto PublicScreen.\nVerrà usato il default PubScreen.",
  14.    "Giusto"
  15. };
  16.  
  17. struct EasyStruct NoPens =
  18. {
  19.    sizeof(struct EasyStruct),0,
  20.    "Problema Allocazione Colori",
  21.    "Non posso allocare abbastanza penne libere.\nLa grafica verrà esclusa!",
  22.    "Che peccato"
  23. };
  24.  
  25. struct EasyStruct ClosePub =
  26. {
  27.    sizeof(struct EasyStruct),0,
  28.    "Public Screen Request",
  29.    "Prego chiudi tutte le finestre sullo schermo.",
  30.    "Naturalmente"
  31. };
  32.  
  33. struct EasyStruct NoProp =
  34. {
  35.    sizeof(struct EasyStruct),0,
  36.    "Text Font Problema Informazione",
  37.    "'%s' è un PROPORTIONALE font.\nPrego usa un NON PROPORZIONALE font!",
  38.    "Naturalmente"
  39. };
  40.  
  41. struct EasyStruct GameInfo =
  42. {
  43.    sizeof(struct EasyStruct),0,
  44.    "Informazioni gioco",
  45.    "%s",
  46.    "Molto interessante"
  47. };
  48.  
  49. struct EasyStruct BigWins =
  50. {
  51.    sizeof(struct EasyStruct),0,
  52.    "Sistema Problemi Report",
  53.    "Le finestre sono troppo grandi per lo schermo!\nProva il TANDYFLAG-ToolType (-t),\nUsa un font più piccolo o\napri uno schermo più grande :-)",
  54.    "Controllo questo"
  55. };
  56.  
  57. struct EasyStruct Quit =
  58. {
  59.    sizeof(struct EasyStruct),0,
  60.    "Request di conferma",
  61.    "Vuoi veramente uscire %s?",
  62.    "Si|No"
  63. };
  64.  
  65. struct EasyStruct About =
  66. {
  67.    sizeof(struct EasyStruct),0,
  68.    "Informazione molto importante",
  69.    "AMIGA SCOTT-Free V1.90, 1996-2002\n© Andreas Aumayr, Weidenweg 22\nA-4209 Engerwitzdorf, AUSTRIA\nE-Mail: anden@gmx.at\n\nBasato su SCOTT-Free per UNIX\n© Swansea University Comp. Soc.\nTraduzione italiana di Betori Alessandro",
  70.    "Invierò una cartolina ad Andreas"
  71. };
  72.  
  73. struct EasyStruct NoMem =
  74. {
  75.    sizeof(struct EasyStruct),0,
  76.    "Sistema Problema Report",
  77.    "Memoria esaurita!\nUscita.",
  78.    "Capito"
  79. };
  80.  
  81. struct EasyStruct Library =
  82. {
  83.    sizeof(struct EasyStruct),0,
  84.    "Sistema Problema Report",
  85.    "Impossibile aprire\n'%s-Library'",
  86.    "Capito"
  87. };
  88.  
  89. struct EasyStruct FError =
  90. {
  91.    sizeof(struct EasyStruct),0,
  92.    "DOS Problema Report",
  93.    "Impossibile leggere Adventure-Datafile\n'%s'",
  94.    "Capito"
  95. };
  96.  
  97. struct EasyStruct ConFail =
  98. {
  99.    sizeof(struct EasyStruct),0,
  100.    "Sistema Problema Report",
  101.    "Fallita apertura Console-Finestra\n'%s'",
  102.    "Capito"
  103. };
  104.  
  105. struct NewMenu newmenu[] =
  106. {
  107.    {
  108.       NM_TITLE,"SCOTT-Free",NULL,0,0,NULL
  109.    },
  110.    {
  111.       NM_ITEM,"Circa","?",0,0,NULL
  112.    },
  113.    {
  114.       NM_ITEM,NM_BARLABEL,NULL,0,0,NULL
  115.    },
  116.    {
  117.       NM_ITEM,"Datafile ...","D",0,0,NULL
  118.    },
  119.    {
  120.       NM_ITEM,NM_BARLABEL,NULL,0,0,NULL
  121.    },
  122.    {
  123.       NM_ITEM,"Aiuto","H",0,0,NULL
  124.    },
  125.    {
  126.       NM_ITEM,NM_BARLABEL,NULL,0,0,NULL
  127.    },
  128.    {
  129.       NM_ITEM,"Fine","Q",0,0,NULL
  130.    },
  131.    {
  132.       NM_TITLE,"Avventura",NULL,0,0,NULL
  133.    },
  134.    {
  135.       NM_ITEM,"Informazioni Gioco","G",0,0,NULL
  136.    },
  137.    {
  138.       NM_ITEM,NM_BARLABEL,NULL,0,0,NULL
  139.    },
  140.    {
  141.       NM_ITEM,"Ricarica ...","R",0,0,NULL
  142.    },
  143.    {
  144.       NM_ITEM,"Memorizza ...","S",0,0,NULL
  145.    },
  146.    {
  147.       NM_ITEM,NM_BARLABEL,NULL,0,0,NULL
  148.    },
  149.    {
  150.       NM_ITEM,"Ricomincia","N",0,0,NULL
  151.    },
  152.    {
  153.       NM_TITLE,"Comandi",NULL,0,0,NULL
  154.    },
  155.    {
  156.       NM_ITEM,"Guarda","L",0,0,NULL
  157.    },
  158.    {
  159.       NM_ITEM,"Inventario","I",0,0,NULL
  160.    },
  161.    {
  162.       NM_ITEM,"Prendi tutto","A",0,0,NULL
  163.    },
  164.    {
  165.       NM_ITEM,NM_BARLABEL,NULL,0,0,NULL
  166.    },
  167.    {
  168.       NM_ITEM,"Punteggio","C",0,0,NULL
  169.    },
  170.    {
  171.       NM_TITLE,"Preferenze",NULL,0,0,NULL
  172.    },
  173.    {
  174.       NM_ITEM,"Grafica","P",CHECKIT|MENUTOGGLE|CHECKED,0,NULL
  175.    },
  176.    {
  177.       NM_ITEM,"Parlato","E",CHECKIT|MENUTOGGLE,0,NULL
  178.    },
  179.    {
  180.       NM_END,NULL,0,0,NULL
  181.    },
  182. };
  183.  
  184.  
  185.